C# socket通信实现一个服务器连接多个客户端,可以发送文件、震动 .
├── Server and Client
│ ├── Client
│ │ ├── Client
│ │ │ ├── App.config
│ │ │ ├── Client.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Client.exe
│ │ │ │ │ ├── Client.exe.config
│ │ │ │ │ └── Client.pdb
│ │ │ │ └── Release
│ │ │ ├── cForm.Designer.cs
│ │ │ ├── cForm.cs
│ │ │ ├── cForm.resx
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── Client.Properties.Resources.resources
│ │ │ ├── Client.cForm.resources
│ │ │ ├── Client.csproj.AssemblyReference.cache
│ │ │ ├── Client.csproj.CoreCompileInputs.cache
│ │ │ ├── Client.csproj.FileListAbsolute.txt
│ │ │ ├── Client.csproj.GenerateResource.cache
│ │ │ ├── Client.csprojAssemblyReference.cache
│ │ │ ├── Client.exe
│ │ │ ├── Client.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── Client.sln
│ └── Server——WindowsFormsApp2
│ ├── WindowsFormsApp2
│ │ ├── App.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Server.csproj
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── WindowsFormsApp2.exe
│ │ │ │ ├── WindowsFormsApp2.exe.config
│ │ │ │ └── WindowsFormsApp2.pdb
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Server.csproj.AssemblyReference.cache
│ │ │ ├── Server.csproj.CoreCompileInputs.cache
│ │ │ ├── Server.csproj.FileListAbsolute.txt
│ │ │ ├── Server.csproj.GenerateResource.cache
│ │ │ ├── Server.csprojAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ ├── WindowsFormsApp2.Properties.Resources.resources
│ │ │ ├── WindowsFormsApp2.csproj.CoreCompileInputs.cache
│ │ │ ├── WindowsFormsApp2.csproj.FileListAbsolute.txt
│ │ │ ├── WindowsFormsApp2.csproj.GenerateResource.cache
│ │ │ ├── WindowsFormsApp2.csprojAssemblyReference.cache
│ │ │ ├── WindowsFormsApp2.exe
│ │ │ ├── WindowsFormsApp2.pdb
│ │ │ └── WindowsFormsApp2.sForm.resources
│ │ ├── sForm.Designer.cs
│ │ ├── sForm.cs
│ │ └── sForm.resx
│ └── WindowsFormsApp2.sln
└── 找例子网_Server and Client.zip
19 directories, 57 files
评论